home *** CD-ROM | disk | FTP | other *** search
/ Atari Mega Archive 1 / Atari Mega Archive - Volume 1.iso / telecomm / zmdm.zoo / common.c next >
C/C++ Source or Header  |  1991-04-27  |  37KB  |  1,529 lines

  1. /*
  2.  *                ACKNOWLEDGEMENTS
  3.  *
  4.  *    ZMDM was derived from rz/sz for Unix  posted by 
  5.  *    Chuck Forsberg (...!tektronix!reed!omen!caf ). We
  6.  *    thank him for his excellent code, and for giving
  7.  *    us permission to use and distribute his code and
  8.  *    documentation.
  9.  *
  10.  *    Atari St version by:
  11.  *    Jwahar Bammi
  12.  *     bang:   {any internet host}!dsrgsun.ces.CWRU.edu!bammi
  13.  *     domain: bammi@dsrgsun.ces.CWRU.edu
  14.  *    GEnie:    J.Bammi
  15.  */
  16.  
  17. #include "config.h"
  18.  
  19. #define IN_COMMON
  20.  
  21. /*
  22.  * -rev 08-17-86
  23.  * mode function and most of the rest of the system dependent
  24.  * stuff for rb.c and sb.c   This file is #included so the includer
  25.  * can set parameters such as HOWMANY.  See the main file (rz.c/sz.c)
  26.  * for compile instructions.
  27.  */
  28.  
  29. #ifdef DLIBS
  30. #include <string.h>
  31. #endif
  32.  
  33. #include "zmdm.h"
  34. #include "zmodem.h"
  35.  
  36. #ifndef Supexec
  37.         /* Some versions of osbind don't define Supexec */
  38. #define Supexec(X) xbios(38,X)
  39. #endif
  40.  
  41. #define CRCTABLE
  42.  
  43.         /* GLOBALS */
  44. int Zmodem;        /* ZMODEM protocol requested */
  45. int Nozmodem;    /* If invoked as "rb" */
  46. int Batch;
  47. int Verbose;
  48. int Quiet;        /* overrides logic that would otherwise set verbose */
  49. int Lleft;        /* number of characters in linbuf */
  50. int Readnum;    /* Number of bytes to ask for in read() from modem */
  51. int Crcflg, Nflag;
  52. int ForceBinary;        /* local binary force override for rz */
  53. int Wcsmask;
  54.  
  55. FILE *logf;
  56. FILE *STDERR;
  57. int vdebug;    /* set if RDEBUG or SDEBUG */
  58.  
  59. char secbuf[TXBSIZE];
  60. char linbuf[KSIZE];
  61. #if (MWC || MANX || __GNUC__)            /* File i/o buffer */
  62. unsigned char *bufr;    /* In MWC, MANX or GNU it is lmalloc()'ed in main.c */
  63. #else
  64. #ifndef DYNABUF
  65. unsigned char bufr[BBUFSIZ];
  66. #else
  67. unsigned char *bufr;
  68. #endif /* DYNABUF */
  69. #endif
  70. int fout;
  71. int Lastrx;
  72. int Firstsec;
  73. int Eofseen;        /* indicates cpm eof (^Z) has been received */
  74. int BEofseen;        /* EOF seen on input set by fooseek */
  75. int errors;
  76. long Bytesleft;        /* number of bytes of incoming file left */
  77. long Modtime;        /* Unix style mod time for incoming file */
  78. unsigned int Filemode;    /* Unix style mode for incoming file */
  79. char Pathname[PATHLEN];
  80. char *Progname;        /* the name by which we were called */
  81.  
  82. int Thisbinary;        /* current file is to be received in bin mode */
  83. int Blklen;        /* record length of received packets */
  84. char Lzmanag;        /* Local file management request */
  85. char zconv;        /* ZMODEM file conversion request */
  86. char zmanag;        /* ZMODEM file management request */
  87. char ztrans;        /* ZMODEM file transport request */
  88.  
  89. jmp_buf tohere;        /* For the interrupt on RX timeout */
  90. jmp_buf abrtjmp;    /* for force abort */
  91. jmp_buf busjmp;        /* for bus errors */
  92. jmp_buf addrjmp;    /* for address errors */
  93. unsigned long BusErr, AddrErr;    /* saved vector addresses */
  94. int Zctlesc;        /* Encode control characters */
  95. int SendType;        /* Which send line to use    */
  96. int Modem;        /* Send using Xmodem */
  97. int lsct;
  98. int tryzhdrtype;    /* Header type to send corresponding to Last rx close */
  99. int Txfcs32;        /* TRUE means send binary frames with 32 bit FCS */
  100. long Thisflen;
  101. int Crc32t;        /* Controls 32 bit CRC being sent */
  102.             /* 1 == CRC32,  2 == CRC32 + RLE */
  103. int Crc32r;        /* Indicates/controls 32 bit CRC being received */
  104.             /* 0 == CRC16,  1 == CRC32,  2 == CRC32 + RLE */
  105. int Usevhdrs;        /* Use variable length headers */
  106. int Rxhlen;        /* Length of header received */
  107.  
  108.     /* Globals used by ZMODEM functions */
  109. int Rxframeind;        /* ZBIN or ZHEX indicates type of frame received */
  110. int Rxtype;        /* Type of header received */
  111. int Rxcount;        /* Count of data bytes received */
  112. int Rxtimeout;        /* Tenths of seconds to wait for something */
  113. int Znulls;        /* Number of nulls to send at beginning of ZDATA hdr */
  114. char Rxhdr[ZMAXHLEN];    /* Received header */
  115. char Txhdr[ZMAXHLEN];    /* Transmitted header */
  116. long Rxpos;        /* Received file position */
  117. long Txpos;        /* Transmitted file position */
  118. char Attn[ZATTNLEN+1];    /* Attention string rx sends to tx on err */
  119. char *Altcan;        /* Alternate canit string */
  120. int Zrwindow;        /* RX window size (controls garbage count) */
  121.  
  122.         /* Globals used by Sz */
  123. unsigned Txwindow; /* Control the size of the transmitted window */
  124. unsigned Txwspac;    /* Spacing between zcrcq requests */
  125. unsigned Txwcnt;    /* Counter used to space ack requests */
  126. long Lrxpos;        /* Receiver's last reported offset */
  127. int Lskipnocor;
  128. int Rxclob;    /* Clobber existing file */
  129.  
  130. char Lzconv;    /* Local ZMODEM file conversion request */
  131. char Lztrans;
  132. char *Cmdstr;        /* Pointer to the command string */
  133. int Optiong;        /* Let it rip no wait for sector ACK's */
  134. int Totsecs;        /* total number of sectors this file */
  135. int Command;        /* Send a command, then exit. */
  136. int Cmdack1;        /* Rx ACKs command, then do it */
  137. int Exitcode;
  138. int Testattn;        /* Force receiver to send Attn, etc with qbf. */
  139. int Wantfcs32;        /* want to send 32 bit FCS */
  140. jmp_buf intrjmp;    /* For the interrupt on RX CAN */
  141.  
  142. char *qbf;
  143. unsigned int Rxbuflen;    /* Receiver's max buffer length */
  144. int Cmdtries;
  145. int Filcnt;        /* count of number of files opened */
  146. int Lfseen;
  147. int Tframlen;        /* Override for tx frame length */
  148. int blkopt;        /* Override value for zmodem blklen */
  149. int Rxflags;
  150. int Ascii;        /* Add CR's for brain damaged programs */
  151. int Fullname;        /* transmit full pathname */
  152. int Unlinkafter;    /* Unlink file after it is sent */
  153. int Dottoslash;        /* Change foo.bar.baz to foo/bar/baz */
  154. int errcnt;        /* number of files unreadable */
  155. int siggi;        /* line interrupt enable flag     */
  156.  
  157. /* crctab calculated by Mark G. Mendel, Network Systems Corporation */
  158. unsigned int crctab[256] = {
  159.     0x0000,  0x1021,  0x2042,  0x3063,  0x4084,  0x50a5,  0x60c6,  0x70e7,
  160.     0x8108,  0x9129,  0xa14a,  0xb16b,  0xc18c,  0xd1ad,  0xe1ce,  0xf1ef,
  161.     0x1231,  0x0210,  0x3273,  0x2252,  0x52b5,  0x4294,  0x72f7,  0x62d6,
  162.     0x9339,  0x8318,  0xb37b,  0xa35a,  0xd3bd,  0xc39c,  0xf3ff,  0xe3de,
  163.     0x2462,  0x3443,  0x0420,  0x1401,  0x64e6,  0x74c7,  0x44a4,  0x5485,
  164.     0xa56a,  0xb54b,  0x8528,  0x9509,  0xe5ee,  0xf5cf,  0xc5ac,  0xd58d,
  165.     0x3653,  0x2672,  0x1611,  0x0630,  0x76d7,  0x66f6,  0x5695,  0x46b4,
  166.     0xb75b,  0xa77a,  0x9719,  0x8738,  0xf7df,  0xe7fe,  0xd79d,  0xc7bc,
  167.     0x48c4,  0x58e5,  0x6886,  0x78a7,  0x0840,  0x1861,  0x2802,  0x3823,
  168.     0xc9cc,  0xd9ed,  0xe98e,  0xf9af,  0x8948,  0x9969,  0xa90a,  0xb92b,
  169.     0x5af5,  0x4ad4,  0x7ab7,  0x6a96,  0x1a71,  0x0a50,  0x3a33,  0x2a12,
  170.     0xdbfd,  0xcbdc,  0xfbbf,  0xeb9e,  0x9b79,  0x8b58,  0xbb3b,  0xab1a,
  171.     0x6ca6,  0x7c87,  0x4ce4,  0x5cc5,  0x2c22,  0x3c03,  0x0c60,  0x1c41,
  172.     0xedae,  0xfd8f,  0xcdec,  0xddcd,  0xad2a,  0xbd0b,  0x8d68,  0x9d49,
  173.     0x7e97,  0x6eb6,  0x5ed5,  0x4ef4,  0x3e13,  0x2e32,  0x1e51,  0x0e70,
  174.     0xff9f,  0xefbe,  0xdfdd,  0xcffc,  0xbf1b,  0xaf3a,  0x9f59,  0x8f78,
  175.     0x9188,  0x81a9,  0xb1ca,  0xa1eb,  0xd10c,  0xc12d,  0xf14e,  0xe16f,
  176.     0x1080,  0x00a1,  0x30c2,  0x20e3,  0x5004,  0x4025,  0x7046,  0x6067,
  177.     0x83b9,  0x9398,  0xa3fb,  0xb3da,  0xc33d,  0xd31c,  0xe37f,  0xf35e,
  178.     0x02b1,  0x1290,  0x22f3,  0x32d2,  0x4235,  0x5214,  0x6277,  0x7256,
  179.     0xb5ea,  0xa5cb,  0x95a8,  0x8589,  0xf56e,  0xe54f,  0xd52c,  0xc50d,
  180.     0x34e2,  0x24c3,  0x14a0,  0x0481,  0x7466,  0x6447,  0x5424,  0x4405,
  181.     0xa7db,  0xb7fa,  0x8799,  0x97b8,  0xe75f,  0xf77e,  0xc71d,  0xd73c,
  182.     0x26d3,  0x36f2,  0x0691,  0x16b0,  0x6657,  0x7676,  0x4615,  0x5634,
  183.     0xd94c,  0xc96d,  0xf90e,  0xe92f,  0x99c8,  0x89e9,  0xb98a,  0xa9ab,
  184.     0x5844,  0x4865,  0x7806,  0x6827,  0x18c0,  0x08e1,  0x3882,  0x28a3,
  185.     0xcb7d,  0xdb5c,  0xeb3f,  0xfb1e,  0x8bf9,  0x9bd8,  0xabbb,  0xbb9a,
  186.     0x4a75,  0x5a54,  0x6a37,  0x7a16,  0x0af1,  0x1ad0,  0x2ab3,  0x3a92,
  187.     0xfd2e,  0xed0f,  0xdd6c,  0xcd4d,  0xbdaa,  0xad8b,  0x9de8,  0x8dc9,
  188.     0x7c26,  0x6c07,  0x5c64,  0x4c45,  0x3ca2,  0x2c83,  0x1ce0,  0x0cc1,
  189.     0xef1f,  0xff3e,  0xcf5d,  0xdf7c,  0xaf9b,  0xbfba,  0x8fd9,  0x9ff8,
  190.     0x6e17,  0x7e36,  0x4e55,  0x5e74,  0x2e93,  0x3eb2,  0x0ed1,  0x1ef0
  191. };
  192.  
  193. /*
  194.  * Copyright (C) 1986 Gary S. Brown.  You may use this program, or
  195.  * code or tables extracted from it, as desired without restriction.
  196.  *
  197.  *   Need an unsigned type capable of holding 32 bits;
  198.  */
  199. typedef unsigned long int UNS_32_BITS;
  200.  
  201. /* First, the polynomial itself and its table of feedback terms.  The  */
  202. /* polynomial is